[dbo].[BAEOrderProductCategoryLookupUpdate]
SQLServer
>
iMIS1521GA
>
Stored Procedures
> dbo.BAEOrderProductCategoryLookupUpdate
Properties
Parameters
SQL Script
Uses
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
Parameters
Name
Data Type
Max Length (Bytes)
@OrderProductID
int
4
@OrderCategoryID
int
4
@IsFeatured
bit
1
@SortOrder
int
4
SQL Script
create
procedure
[dbo]
.
[BAEOrderProductCategoryLookupUpdate]
@OrderProductID
as
int
,
@OrderCategoryID
AS
int
,
@IsFeatured
AS
bit
,
@SortOrder
AS
int
AS
UPDATE
OrderProductCategoryLookup
SET
OrderCategoryID
=
@OrderCategoryID
,
IsFeatured
=
@IsFeatured
,
SortOrder
=
@SortOrder
WHERE
OrderProductID
=
@OrderProductID
AND
OrderCategoryID
=
@OrderCategoryID
;
GO
Uses
[dbo].[OrderProductCategoryLookup]
dbo